Contents | Index | < Browse | Browse >
LETTERmemmoveULETTER
Copies a memory block.
Overview
#include <string.h>
r = memmove(dest,source,n);
void *r;
void *dest;
const void *source;
size_t n;
Portability
ANSI
Description
"memcpy" copies "n" bytes of the memory block starting at "source" to "dest".
This routine also handles overlapping memory blocks.
Returns
A pointer to the destination memory block.
See also
memcpy